home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 October
/
PCWorld_1999-10_cd1.bin
/
Software
/
Servis
/
X-setup
/
_SETUP.1
/
XQ IE Outlook Express 1.xpl
< prev
next >
Wrap
Text File
|
1999-07-16
|
976b
|
45 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH"="Internet\Outlook Express"
"NAME"="Advanced Options"
"LANGUAGE"="VBScript"
"VERSION"="1.21"
"TEXT 1"="Display Splash Screen"
"DESCRIPTION 1"="Miscellaneous settings for Outlook Express."
"AUTHOR"="Xteq Systems"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
sPath="HKCU\Software\Microsoft\Outlook Express\"
sNOS="NoSplash"
Sub Plugin_Initialize
if RegPathExists(sPath) then
i=RegReadValue(sPath & sNOS)
if i=0 then
Call SetUIElement(1,True)
end if
else
Disable
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
i=GetUIElement(1)
if i=true then
Call RegWriteValue(sPath & sNOS,0,2)
else
Call RegWriteValue(sPath & sNOS,1,2)
end if
End Sub
Sub Plugin_Terminate
End Sub